home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Trial
/
Camtasia 6
/
camtasia.msi
/
Cabs.w1.cab
/
WMSeek.js
< prev
next >
Wrap
Text File
|
2008-10-10
|
476b
|
19 lines
function SeekTime( Time )
{
if( document.mediaPlayer == undefined || document.mediaPlayer == null )
{
return;
}
if (navigator.appName == "Netscape" && !window.GeckoActiveXObject )
{
document.mediaPlayer.getControls().setCurrentPosition( Time );
document.mediaPlayer.getControls().Play();
}
else
{
document.mediaPlayer.controls.currentPosition = Time;
document.mediaPlayer.controls.play();
}
}